home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Vault: The Gold Collection
/
Software Vault - The Gold Collection (American Databankers) (1993).ISO
/
cdr31
/
trak306.zip
/
TAPE.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-03-31
|
464b
|
30 lines
@echo off
rem
rem (c) Copyright 1992
rem Colorado Memory Systems Inc.
rem All Rights Reserved.
rem
rem Change Drive
%1:
rem Change Directory
cd %2
rem Now run the tape software
rem If we are running from cmdline, create an error log
if NOT "%3" == "" goto cmdline
TAPE.EXE %3 %4 %5 %6
goto end
:cmdline
TAPE.EXE %3 %4 %5 %6 /b="error.log"
rem Let the user see the results before we return
if NOT "%3" == "" pause
:end
@echo on